home *** CD-ROM | disk | FTP | other *** search
- /*
- *--- Twips.cpp -----------------------------------------------------------
- * Copyright (c) 1995-96 Adobe Systems Incorporated. All rights reserved.
- * Created on Sun, Oct 22, 1995 @ 3:29 PM by Paul Ferguson.
- *
- * Description: For notes about this function, refer to the
- * PCL documentation file twips.html
- *-------------------------------------------------------------------------
- */
-
- #include "PGetConvertStr.h"
- #include "Twips.h"
-
- long twips(char * inDistanceStr)
- {
- try {
- PGetConvertStr result(inDistanceStr);
- return result;
- }
- catch (PMErr) {
- return 0;
- };
- }